Disable "Include Link" option in Report Subscription
Can the "include link" option be disabled?
So that when users are setting up subscription they do not see it or it is disabled.
October 14th, 2010 9:22pm
If you are using SSRS 2005/2000 then the option is in the subscription. Simply uncheck the box that states "include link"
Free Windows Admin Tool Kit Click here and download it now
October 14th, 2010 10:10pm
thats not what he is asking
I looked around in the ssrs config files and didnt see anything that would do this
October 15th, 2010 6:32pm
Hi RMehta,
Just as the previous reply,by default,there is no option to disable it in reporting services. However, if you have to do it, there is a workaround (SSRS 2008) which uses Javascript to get the "Include Link" checkbox and set its disable property to True.
The following are the steps:
1. Find the include checkbox via IE source code. Open the report subscription page on the report manager, click Source from the IE's View Menu and look into it, you will find the following code to describe the "Include Link" checkbox:
<td
nowrap="nowrap"><input
id="ui_cbIncludeLink"
type="checkbox"
name="ui_cbIncludeLink"
checked="checked" /><label
for="ui_cbIncludeLink">Include Link</label></td>
2. So, we could write a Javascript to disable the "input" checkbox on aspx page. For example,
var IncludeLink = document.getElementById("ui_cbIncludeLink");
cbTest.disabled = true;
3. After writing the Javascript, put it into the SubscriptionProperties.aspx page which is stored at C:\Program Files\Microsoft SQL Server\MSRS10.SQLSERVER\Reporting Services\ReportManager\Pages with default installation.
4. Please restart your reporting services to take effect with the above modification.
thanks,
Jerry
Free Windows Admin Tool Kit Click here and download it now
October 18th, 2010 9:02am
Thank you all for the input.
Jerry, I wish there was a setting in configuration. I will try the option you suggested and will ping back.
October 18th, 2010 5:02pm
Hi,
You can submit this feedback at
https://connect.microsoft.com/SQLServer/Feedback and hope microsoft enable it in the next release.
thanks,
Jerry
Free Windows Admin Tool Kit Click here and download it now
October 19th, 2010 4:50am
Jerry, I have looked at your recommendation but I have not been able to figure out of to get it to work. Maybe I mssing something, I don't think this would work.
November 10th, 2010 2:52pm